|
This page last changed on Feb 10, 2011 by kgomes.
 | Deprecation Warning
I am keeping this document around for historical purposes, but it references the original Crowd installation. In February of 2011, we upgraded Crowd and moved it to its own virtual machine in the DMZ. The instructions for that move are here |
Deployment Diagram
The following is a deployment diagram of the Crowd server(s) at MBARI.

The important things to note are:
- The crowd server (oceana.mbari.org) is located in the DMZ
- It connects to a database running on solstice.shore.mbari.org.
- It uses the SHORE domain account DB_Collaboration to connect to the database server on solstice.shore.mbari.org
- It uses the "Crowd" database located on the Microsoft SQL Server 2000 server running on solstice.shore.mbari.org
The steps taken to install crowd on oceana.mbari.org were the following:
- Create a database called "crowd" on the SQL Server solstice.shore.mbari.org.
- Give the SHORE domain user "DB_Collaboration" full privs on the "crowd" database. The DB_Collaboration account should not be the database owner, but should have the db_owner role.
- Make sure Java is installed on oceana.mbari.org and that it meets the minimum requirements for the crowd application.
- I create a symbolic link from the installed java to /opt/java so that I can just change the symbolic link to point to a new java installation when I want to upgrade.
- I set an environment variable for JAVA_HOME and point it to /opt/java. This is done by adding:
to the /etc/profile.
- Register with Atlassian for the community/non-profit license for crowd (I did that under an account associated with my email kgomes@mbari.org).
- Once you have the license key, download the latest version of Crowd from Atlassian's website (it comes as a tar.gz file) and copy to oceana.mbari.org.
- Log in to oceana.mbari.org as root.
- Copy the file to the /opt directory.
- Untar and unzip the file using:
followed by:
- This creates a new folder with the contents of the Crowd application.
- I usually cleanup the /opt directory by either deleting or moving the .tar file.
- I create a symbolic link from the installed crowd to /opt/crowd so that I can just change the symbolic link to point to a new crowd installation when I want to upgrade.
- Now, in general I follow the installation instructions given at Atlassian's website, but I have included the steps here to clarify for our installation.
- In order to get this to work with MS SQL Server, I downloaded the jtds-1.2.jar file from http://jtds.sourceforge.net/ and installed it in /opt/crowd/crowd-webapp/WEB-INF/lib so that the correct JDBC driver will be available on the Java classpath.
- I then edited the /opt/crowd/crowd-webapp/WEB-INF/classes/crowd-init.properties to look like the following:
- After editing the crowd-init.properties, I want to make sure the account for DB_Collaboration has rights to the crowd installation, so I cd to /opt and run:
- Then I create a new file in the /etc/init.d directory to server as the startup/shutdown script for crowd. The file contents look like:
- I then put a symbolic link in the /etc/rc.d/rc5.d directory named "S59crowd" that points to /etc/init.d/crowd and another symbolic link named "K07crowd" in the /etc/rc.d/rc4.d so that crowd would be shutdown and started on reboot of the linux machine.
- I then started crowd by going to the /etc/init.d directory and running:
- This starts the crowd application and then you will want to go to http://oceana.mbari.org:8095/crowd to start the setup wizard.
- TODO: kgomes I need to document how I connected this to the MBARI LDAP directory
Upgrade from 1.5.1 to 1.6
On December 29, 2009, I upgraded Crowd from 1.5.1 to 1.6 mostly because of the improved performance they touted with 1.6. Crowd always seemed to be the slow link in the way I had things configured, so I was interested to see if 1.6 really made a difference. Atlassian's instruction for Crowd 1.3 or later are here:
http://confluence.atlassian.com/display/CROWD/Upgrading+from+Crowd+1.3.0+or+Later
Here are the specifics for what we have in house:
- I first logged in to my Atlassian account to make sure our license was still valid. It is good until Feb 2009, so I went ahead and downloaded the Linux tar.gz of 1.6
- I copied it to oceana.mbari.org and put it in /opt
- I then unzipped/untarred the application there
- I backed up the Crowd database on solstice.shore.mbari.org:
- Start up Enterprise Manager in Windows
- Connect to solstice.shore.mbari.org (I had to connect as DB_Collaboration to get this to work)
- Right-click on Crowd database and select All Tasks->Backup Database...
- Select Database-complete
- Click on Add... under Destination
- I typed in a file location of \\tempest\tempbox\kgomes\backups\crowd\db_backup as the file to backup to.
- I then created a new tar.gz file for the /opt/atlassian-crowd-1.5.1 installation and put in the same backup location on tempest.
- I then created a new tar.gz file for the crowd home directory /data/crowd and put in same tempest location
- I copied the jtds-1.2.jar from /opt/atlassian-crowd-1.5.1/crowd-webapp/WEB-INF/lib to the same directory in the new installation
- I then edited the /opt/atlassian-crowd-1.6/crowd-webapp/WEB-INF/classes/crowd-init.properties and pointed the crowd home directory to /data/crowd
- I then copied the updated crowd client jar (/opt/atlassian-crowd-1.6/client/crowd-integrations-client-1.6.jar) to /opt/confluence/confluence/WEB-INF/lib and to /opt/jira/atlassian-jira/WEB-INF/lib (I removed the old ones too IMPORTANT!)
- I downloaded the recommended crowd-ehcache.xml file from the instructions listed above and copied to the /opt/confluence/confluence/WEB-INF/classes and /opt/jira/atlassian-jira/WEB-INF/classes directories
- Lastly I changed the /opt/crowd symbolic link to point to the new crowd installation, shut down confluence, jira, and crowd and restarted crowd.
- After the successful start up of the three applications, I put all the backup files in Alfresco here
|